home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 for Intel / NeXTSTEP 3.2 for Intel.iso / NextAdmin / SimpleNetworkStarter.app / rc.nfs < prev    next >
Encoding:
Text File  |  1992-03-17  |  596 b   |  29 lines

  1. HOME=/; export HOME
  2. PATH=/etc:/usr/etc:/bin:/usr/bin:/usr/ucb; export PATH
  3.  
  4. # Read in configuration information
  5. . /etc/hostconfig
  6. case $? in
  7.     0)
  8.     ;;
  9.     *)
  10.     (echo "Error reading hostconfig")            >/dev/console
  11.     exit 1
  12.     ;;
  13. esac
  14.  
  15. ifconfigerror=0
  16. MOUNTD_PID=`ps ax | grep "rpc.mountd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
  17. if [ "$MOUNTD_PID" = "" ]; then
  18.     /usr/etc/rpc.mountd            >/dev/console
  19. fi
  20.  
  21. NFSD_PID=`ps ax | grep "nfsd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
  22. if [ "$NFSD_PID" = "" ]; then
  23.     /usr/etc/nfsd 6                >/dev/console
  24. fi
  25.  
  26. /usr/etc/exportfs -a
  27.  
  28. exit 0
  29.